home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / extra / pro13 / setvect.c < prev    next >
Text File  |  1993-02-01  |  294b  |  20 lines

  1. /*
  2.     setvect.C
  3.  
  4.     Copyright (C) 1993, Geoff Friesen B.Sc.
  5.     All rights reserved.
  6. */
  7.  
  8. #define    INCL_SETVECT
  9.  
  10. void setvect (int interruptno, void interrupt (*isr) ())
  11. {
  12.    asm push ds
  13.  
  14.    asm mov ah, 25h
  15.    asm mov al, interruptno
  16.    asm lds dx, isr
  17.    asm int 21h
  18.  
  19.    asm pop ds
  20. }